home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
jazlib.arc
/
JZGETDAT.C
< prev
next >
Wrap
Text File
|
1988-12-18
|
688b
|
19 lines
/*
┌────────────────────────────────────────────────────────────────────────────┐
│jzgetdat.c │
│Return the dos date │
│ │
│ (C) JazSoft Software by Jack A. Zucker (301) 794-5950 │
└────────────────────────────────────────────────────────────────────────────┘
*/
jzgetdat( fdate )
char *fdate;
{
union REGS winreg,woutreg;
winreg.h.ah = 0x2a;
intdos(&winreg,&woutreg);
sprintf(fdate,"%02d-%02d-%4d",woutreg.h.dh,woutreg.h.dl,woutreg.x.cx);
}